home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / net / bind-contrib.tar.gz / bind-contrib.tar / contrib / host / exit.h < prev    next >
Text File  |  1996-11-10  |  1KB  |  27 lines

  1. /*
  2. ** Various exit codes.
  3. **
  4. **    They come from <sysexits.h>
  5. **    Defined here to avoid including /usr/ucbinclude on solaris 2.x
  6. **
  7. **    @(#)exit.h              e07@nikhef.nl (Eric Wassenaar) 961010
  8. */
  9.  
  10. #undef  EX_OK            /* defined in <unistd.h> on SVR4 */
  11. #define EX_SUCCESS    0    /* successful termination */
  12. #define EX_USAGE    64    /* command line usage error */
  13. #define EX_DATAERR    65    /* data format error */
  14. #define EX_NOINPUT    66    /* cannot open input */
  15. #define EX_NOUSER    67    /* addressee unknown */
  16. #define EX_NOHOST    68    /* host name unknown */
  17. #define EX_UNAVAILABLE    69    /* service unavailable */
  18. #define EX_SOFTWARE    70    /* internal software error */
  19. #define EX_OSERR    71    /* system error (e.g., can't fork) */
  20. #define EX_OSFILE    72    /* critical OS file missing */
  21. #define EX_CANTCREAT    73    /* can't create (user) output file */
  22. #define EX_IOERR    74    /* input/output error */
  23. #define EX_TEMPFAIL    75    /* temp failure; user is invited to retry */
  24. #define EX_PROTOCOL    76    /* remote error in protocol */
  25. #define EX_NOPERM    77    /* permission denied */
  26. #define EX_CONFIG    78    /* local configuration error */
  27.